home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / chip-cd_2005_03d.zip / 03d / Narzedzia systemowe / dbDeveloper 1.95 / dbdsetup.exe / {app} / dbDeveloper.chm / files / script.js next >
Text File  |  2005-01-05  |  2KB  |  77 lines

  1. function Start()
  2. {
  3.     s="<BODY aLink=#BB1111 link=#7070C8 vLink=#A0A0C8 bgColor=#f4f4f4>";
  4.     s+="<BR>";
  5.     s+="<TABLE align=center border=0 cellPadding=0 cellSpacing=0 class=t0 width=100%>";
  6.     s+="  <TBODY>";
  7.     s+="  <TR>";
  8.     s+="  <TD>";
  9.  
  10.     s+="<TABLE align=center class=table7 border=0 cellPadding=0 cellSpacing=0 width=100%>";
  11.     s+="  <TBODY>";
  12.     s+="  <TR>";
  13.     s+="    <TD width=318><IMG src=\"files/title_left.gif\" width=318 height = 99></TD>";
  14.     s+="    <td background=files/title_fill.gif width = 100%></td>";
  15.     s+="    <TD width=91 align=right><IMG src=\"files/title_right.gif\" width=212 height = 99></TD>";
  16.     s+="  </TR>";
  17.     s+="  </TBODY>";
  18.     s+="</TABLE>";
  19.  
  20.     s+="</TD>";
  21.     s+="</TR>";
  22.     s+="</TBODY>";
  23.     s+="</TABLE>";
  24.  
  25.     s+="<!-- przerwa -->";
  26.     s+="<TABLE border=0 cellPadding=0 cellSpacing=0 height=6>";
  27.     s+="  <TBODY>";
  28.     s+="  <TR>";
  29.     s+="    <TD></TD>";
  30.     s+="  </TR>";
  31.     s+="  </TBODY>";
  32.     s+="</TABLE>";
  33.  
  34.     s+="<TABLE align=center border=0 cellPadding=15 cellSpacing=0 class=table7 width=100%>";
  35.     s+="  <TBODY>";
  36.     s+="  <TR>";
  37.     s+="<TD>";
  38.     document.write(s);
  39. }
  40.  
  41. function End()
  42. {
  43.     s="</TD>";
  44.     s+="</TR>";
  45.     s+="</TBODY>";
  46.     s+="</TABLE>";
  47.     
  48.     s+="</BODY>";
  49.     s+="</HTML>";
  50.     document.write(s);
  51. }
  52.  
  53. function Cell(img)
  54. {
  55.     s="<TD>";
  56.     s+="<TABLE align=center border=0 class=table7 width=32 height=32>";
  57.     s+="<TR>";
  58.     s=s+"<TD><IMG SRC="+img+" width=32 BORDER=0></TD>";
  59.     s+="</TR>";
  60.     s+="</TABLE>";
  61.     s+="</TD>";
  62.  
  63.     document.write(s);
  64. }
  65.  
  66. function CellX(text)
  67. {
  68.     s="<TD>";
  69.     s+="<TABLE align=center border=0 class=table7 width=120 height=32>";
  70.     s+="<TR>";
  71.     s=s+"<TD align=center height=34>"+text+"</TD>";
  72.     s+="</TR>";
  73.     s+="</TABLE>";
  74.     s+="</TD>";
  75.  
  76.     document.write(s);
  77. }